home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / fork.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  117 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.29.17.39.25;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.31.18;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.10.15.46.49;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Lint.
  32. @
  33. text
  34. @/* 
  35.  * fork.c --
  36.  *
  37.  *    Procedure to map from Unix fork system call to Sprite.
  38.  *
  39.  * Copyright (C) 1986 Regents of the University of California
  40.  * All rights reserved.
  41.  */
  42.  
  43. #ifndef lint
  44. static char rcsid[] = "$Header: fork.c,v 1.1 88/06/19 14:31:18 ouster Exp $ SPRITE (Berkeley)";
  45. #endif not lint
  46.  
  47. #include "sprite.h"
  48. #include "status.h"
  49. #include "proc.h"
  50.  
  51. #include "compatInt.h"
  52.  
  53.  
  54. /*
  55.  *----------------------------------------------------------------------
  56.  *
  57.  * fork --
  58.  *
  59.  *    Procedure to map from Unix fork system call to Sprite Proc_Fork.
  60.  *
  61.  * Results:
  62.  *    UNIX_ERROR is returned upon error, with the actual error code
  63.  *    stored in errno.  Upon success, the value of pid is returned, 
  64.  *    where pid is different for child and parent.  The parent receives
  65.  *    the process id of the child in pid, and the child receives the
  66.  *    value 0.
  67.  *
  68.  * Side effects:
  69.  *    A new process is created.
  70.  *
  71.  *----------------------------------------------------------------------
  72.  */
  73.  
  74. int
  75. fork()
  76. {
  77.     ReturnStatus status;  /* result returned by Proc_Fork */
  78.     int pid;          /* process id of child, or 0, set by Proc_Fork */
  79.  
  80.     /* Fork without sharing the heap. */
  81.     status = Proc_Fork(FALSE, &pid);
  82.     if (status == PROC_CHILD_PROC) {
  83.     return(0);
  84.     }
  85.     if (status != SUCCESS) {
  86.     errno = Compat_MapCode(status);
  87.     return(UNIX_ERROR);
  88.     }
  89.     return((int) pid);
  90. }
  91. @
  92.  
  93.  
  94. 1.2.1.1
  95. log
  96. @Initial branch for Sprite server.
  97. @
  98. text
  99. @d11 1
  100. a11 1
  101. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/fork.c,v 1.2 88/07/29 17:39:25 ouster Exp $ SPRITE (Berkeley)";
  102. @
  103.  
  104.  
  105. 1.1
  106. log
  107. @Initial revision
  108. @
  109. text
  110. @d11 1
  111. a11 1
  112. static char rcsid[] = "$Header: fork.c,v 1.3 86/07/07 15:10:55 douglis Exp $ SPRITE (Berkeley)";
  113. d45 1
  114. a45 1
  115.     Proc_PID pid;      /* process id of child, or 0, set by Proc_Fork */
  116. @
  117.